home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / programming / other / fdi / fdi.readme < prev    next >
Text File  |  1997-12-01  |  862b  |  30 lines

  1. Short:    Very good FD to Asm converter.  v2.2
  2. Uploader: kjots@gem.menzies.latrobe.edu.au (Karl J. Ots)
  3. Author:   kjots@gem.menzies.latrobe.edu.au (Karl J. Ots)
  4. Requires: OS2.0+
  5. Type:     dev/asm
  6. Replaces: dec/asm/FDI.lha
  7.  
  8. FDI converts FD files that look something like this:
  9.  
  10.     InitCode(startClass,version)(d0/d1)
  11.     InitStruct(initTable,memory,size)(a1/a2,d0)
  12.  
  13. Into Assembly language include files that look like this:
  14.  
  15.     _LVOInitCode             EQU    -$0048
  16.     _LVOInitStruct             EQU    -$004E
  17.  
  18. FDI offers:
  19.     * Three CALL macros:
  20.        - Standard,
  21.        - PC-Reletive base movement,
  22.        - Simple - no base movement.
  23.     * Hexidecimal or Decimal offsets.
  24.     * Neat, tab-alligned output (with variable tabs).
  25.     * Non-include file output repression for easy scripting.
  26.     * Private entries can be processed or ommited.
  27.  
  28. All options are controlled, and it is up to YOU which one you
  29. want to use.
  30.